ro_fsys, not XSTRING (foo).
if (access (XSTRING (abspath)->data, 0) >= 0)
return ((access (XSTRING (abspath)->data, 2) >= 0
- && ! ro_fsys (XSTRING (abspath)))
+ && ! ro_fsys ((char *) XSTRING (abspath)->data))
? Qt : Qnil);
dir = Ffile_name_directory (abspath);
#ifdef VMS
dir = Fdirectory_file_name (dir);
#endif /* VMS */
return ((access (!NILP (dir) ? (char *) XSTRING (dir)->data : "", 2) >= 0
- && ! ro_fsys ((char *) XSTRING (dir)))
+ && ! ro_fsys ((char *) XSTRING (dir)->data))
? Qt : Qnil);
}